//Instructions
//Create a function that takes an array of strings. Return all words in the array that are exactly four letters.

using System.Linq;
public class Program 
{
    public static string[] IsFourLetters(string[] arr) => arr.Where(w=> (w.Length == 4)).ToArray();
}
